home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Compilers⁄Interps / GCC-2.3.3r12 / Sources-Targets / xm-hp320.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-05  |  456 b   |  20 lines  |  [TEXT/MPS ]

  1. /* USG is needed to prevent trying to use getrusage and getwd.  */
  2. #define USG
  3.  
  4. #include "xm-m68k.h"
  5.  
  6. #define bcopy(a,b,c) memcpy (b,a,c)
  7. #define bzero(a,b) memset (a,0,b)
  8. #define bcmp(a,b,c) memcmp (a,b,c)
  9. #define rindex strrchr
  10. #define index strchr
  11.  
  12. /* If compiling with HPUX compiler, we are probably using alloca.c,
  13.    so help it work right.  */
  14. #ifndef __GNUC__
  15. #define USE_C_ALLOCA
  16. #endif
  17.  
  18. /* Don't try to use sys_siglist.  */
  19. #define NO_SYS_SIGLIST
  20.